From 6f25f771c5e36876cbcc27e13eb463c9c2311f23 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Wed, 11 Jun 2008 15:14:26 +0000 Subject: [PATCH] fix local prototype of _gtk_file_chooser_label_for_file() (takes a GFile, 2008-06-11 Michael Natterer * gtk/gtkfilechooserbutton.c: fix local prototype of _gtk_file_chooser_label_for_file() (takes a GFile, not const gchar*). svn path=/trunk/; revision=20352 --- ChangeLog | 5 +++++ gtk/gtkfilechooserbutton.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bb1101348d..efeb6dbd2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-06-11 Michael Natterer + + * gtk/gtkfilechooserbutton.c: fix local prototype of + _gtk_file_chooser_label_for_file() (takes a GFile, not const gchar*). + 2008-06-10 Matthias Clasen Bug 536765 – GtkComboBox should set COMBO type hint for its menu diff --git a/gtk/gtkfilechooserbutton.c b/gtk/gtkfilechooserbutton.c index bca2312a96..1e5251895f 100644 --- a/gtk/gtkfilechooserbutton.c +++ b/gtk/gtkfilechooserbutton.c @@ -1823,7 +1823,7 @@ model_add_volumes (GtkFileChooserButton *button, } } -extern gchar * _gtk_file_chooser_label_for_file (const gchar *uri); +extern gchar * _gtk_file_chooser_label_for_file (GFile *file); static void model_add_bookmarks (GtkFileChooserButton *button, -- 2.30.2